c28f0a0d7e0bb834b004e6199af7c6ca908c5347,src/net/java/sip/communicator/impl/gui/main/contactlist/ContactRightButtonMenu.java,ContactRightButtonMenu,contactSelected,#ContactListEvent#,471

Before Change


            .getContactList().removeExcContactListListener(this);
        
        if(moveAllContacts) {
            new MoveAllSubcontactsThread(evt.getSourceContact()).start();
        }
        else if(contactToMove != null) {
            new MoveSubcontactThread(evt.getSourceContact()).start();

After Change


     */
    public void contactSelected(ContactListEvent evt)
    {
        this.moveContact(evt.getSourceContact());
    }

    /**